home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus Special 18 / AMIGAplus Sonderheft 18 (1999)(ICP)(DE)[!].iso / PD / Spiele / lazymines / lazymines_src / display_globals.h < prev    next >
C/C++ Source or Header  |  1999-01-03  |  462b  |  28 lines

  1. /*
  2.  * display_globals.h
  3.  * =================
  4.  * Various display globals.
  5.  *
  6.  * Copyright (C) 1994-1998 Håkan L. Younes (lorens@hem.passagen.se)
  7.  */
  8.  
  9. #ifndef DISPLAY_GLOBALS_H
  10. #define DISPLAY_GLOBALS_H
  11.  
  12. #include <libraries/gadtools.h>
  13.  
  14.  
  15. /* Dimensions of default font */
  16. #define ROMFONT_WIDTH    8
  17. #define ROMFONT_HEIGHT   8
  18.  
  19. /* Dimensions of gui lines */
  20. #define LINEWIDTH    2
  21. #define LINEHEIGHT   1
  22.  
  23.  
  24. /* Array of system pens */
  25. extern UWORD  *gui_pens;
  26.  
  27. #endif
  28.